採用 Day 26 部署在 Heroku 的 API 來跟網頁前端串接。
HTTP Request 在網頁有很多種方式可以實作,像是 ajax、axios、Fetch...等。其中 Fetch 是 ES6 的新語法,意味著最新版瀏覽器可支援的原生函式庫。其優點是不需而外載入其他函式庫,Fetch 主要是透過 Promise 來執行請求資料和接收 HTTP Response 的處理方式。
下面程式參考 Fetch-MDN-Mozilla 透過建立 postData()
函式,開發者可以重複呼叫做 HTTP Request。其用法直接傳入 API URL 以及需要 POST 的資料即可。
function postData(url, data) {
// Default options are marked with *
return fetch(url, {
body: JSON.stringify(data), // must match 'Content-Type' header
cache: 'no-cache', // *default, no-cache, reload, force-cache, only-if-cached
credentials: 'same-origin', // include, same-origin, *omit
headers: {
'user-agent': 'Example',
'content-type': 'application/json'
},
method: 'POST', // *GET, POST, PUT, DELETE, etc.
mode: 'cors', // no-cors, cors, *same-origin
redirect: 'follow', // manual, *follow, error
referrer: 'no-referrer', // *client, no-referrer
})
.then(response => response.json()) // 輸出成 json
}
const url = 'Your API Request URL';
const data = '{ Your data need JSON Object format }';
postData(url, data)
.then(data => {
// response
const result=data.result ;
})
.catch(error => console.error(error))
本系列教學簡報 PDF & Code 都可以從我的 GitHub 取得!
如果你對機器學習和人工智慧(AI)技術感興趣,歡迎參考我的線上免費電子書《經典機器學習》。這本書涵蓋了許多實用的機器學習方法和技術,適合任何對這個領域有興趣的讀者。點擊下方連結即可獲取最新內容,讓我們一起深入了解AI的世界!
👉 全民瘋AI系列 [經典機器學習] 線上免費電子書
👉 其它全民瘋AI系列 這是一個入口,匯集了許多不同主題的AI免費電子書